home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 80 / CD Actual 80 Julio-Agosto 2003.iso / Linux / LinuxGazette / lg / issue83 / misc / sandeep / Sample.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-01  |  140 b   |  13 lines

  1. #include <stdio.h>
  2.  
  3. char str[] = "I am a FreeBird ";
  4.  
  5. int main()
  6. {
  7.     int i = 0;
  8.     while(1){
  9.         write(1, &str[i++%16], 1);
  10.         usleep(200);
  11.     }
  12. }    
  13.